home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / FinderAppAEObj_pd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-21  |  665 b   |  48 lines  |  [TEXT/R*ch]

  1. #pragma once on
  2. /*
  3.     AppAEObj_pd.h
  4.     © Bob Boylan 1996
  5.     
  6.     Revision History
  7.     MacHack 1996        initial creation
  8.  
  9. */
  10. #include "BaseTypes.h"
  11. #include "AppAEObj_pd.h"
  12. #include "Clone_ut.h"
  13.  
  14. #include <vector.h>
  15.  
  16.  
  17.  
  18.  
  19. class FinderAppAEObj_pd : public AppAEObj_pd
  20. {
  21. public:
  22.     // ctor
  23.                 FinderAppAEObj_pd( AEObj_pd * inParent, DescType inKind, Int_32 inIndex );
  24.     // dtor
  25.         virtual    ~FinderAppAEObj_pd();
  26.     
  27.     // access
  28.         virtual
  29.         string            GetName();
  30.  
  31.     // manipulator
  32.         virtual
  33.         void    Update( ProgressProc_hi &inProgressProc, Int_32 inMaxSubModels);
  34.  
  35.     // questions
  36.         virtual
  37.         Boolean    IsScriptable();
  38.  
  39. protected:
  40.  
  41.     // more questions
  42.         virtual
  43.         Boolean    IsValidAETE();
  44.     
  45. private:
  46.  
  47. };
  48.